home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / kpathsea / config.h < prev    next >
C/C++ Source or Header  |  1996-11-02  |  2KB  |  53 lines

  1. /* config.h: master configuration file, included first by all compilable
  2.    source files (not headers).
  3.  
  4. Copyright (C) 1993 Free Software Foundation, Inc.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  */
  19.  
  20. /* Modified by Klaus Gebhardt, 1996 */
  21.  
  22. #ifndef KPATHSEA_CONFIG_H
  23. #define KPATHSEA_CONFIG_H
  24.  
  25. /* System dependencies that are figured out by `configure'.  If we are
  26.    compiling standalone, we get our c-auto.h.  Otherwise, the package
  27.    containing us must provide this (unless it can somehow generate ours
  28.    from c-auto.h.in).  We use <...> instead of "..." so that the current
  29.    cpp directory (i.e., kpathsea/) won't be searched. */
  30. #include <c-auto.h>
  31.  
  32. /* ``Standard'' system headers.  */
  33. #include <kpathsea/c-std.h>
  34.  
  35. /* Macros to discard or keep prototypes.  */
  36. #include <kpathsea/c-proto.h>
  37.  
  38. /* Our own definitions of supposedly always-useful stuff.  */
  39. #include <kpathsea/lib.h>
  40. #include <kpathsea/types.h>
  41.  
  42. /* Support extra runtime tracing.  */
  43. #include <kpathsea/debug.h>
  44.  
  45. /* If you want to find subdirectories in a directory with non-Unix
  46.    semantics (specifically, if a directory with no subdirectories does
  47.    not have exactly two links), define this.  */
  48. #if !defined (DOS) && !defined (OS2) && !defined (VMS) && !defined (VMCMS)
  49. #define UNIX_ST_NLINK
  50. #endif /* not DOS and not VMS and not VMCMS */
  51.  
  52. #endif /* not KPATHSEA_CONFIG_H */
  53.